home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / mom_mania.swf / scripts / mx / events / FlexEvent.as next >
Text File  |  2011-08-19  |  2KB  |  81 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class FlexEvent extends Event
  9.    {
  10.       
  11.       public static const ADD:String = "add";
  12.       
  13.       public static const TRANSFORM_CHANGE:String = "transformChange";
  14.       
  15.       public static const INIT_COMPLETE:String = "initComplete";
  16.       
  17.       public static const REMOVE:String = "remove";
  18.       
  19.       public static const BUTTON_DOWN:String = "buttonDown";
  20.       
  21.       public static const EXIT_STATE:String = "exitState";
  22.       
  23.       public static const CREATION_COMPLETE:String = "creationComplete";
  24.       
  25.       public static const REPEAT:String = "repeat";
  26.       
  27.       public static const LOADING:String = "loading";
  28.       
  29.       public static const REPEAT_START:String = "repeatStart";
  30.       
  31.       public static const INITIALIZE:String = "initialize";
  32.       
  33.       public static const ENTER_STATE:String = "enterState";
  34.       
  35.       public static const URL_CHANGED:String = "urlChanged";
  36.       
  37.       public static const REPEAT_END:String = "repeatEnd";
  38.       
  39.       mx_internal static const VERSION:String = "2.0.1.0";
  40.       
  41.       public static const HIDE:String = "hide";
  42.       
  43.       public static const ENTER:String = "enter";
  44.       
  45.       public static const PRELOADER_DONE:String = "preloaderDone";
  46.       
  47.       public static const CURSOR_UPDATE:String = "cursorUpdate";
  48.       
  49.       public static const PREINITIALIZE:String = "preinitialize";
  50.       
  51.       public static const INVALID:String = "invalid";
  52.       
  53.       public static const IDLE:String = "idle";
  54.       
  55.       public static const VALID:String = "valid";
  56.       
  57.       public static const DATA_CHANGE:String = "dataChange";
  58.       
  59.       public static const APPLICATION_COMPLETE:String = "applicationComplete";
  60.       
  61.       public static const VALUE_COMMIT:String = "valueCommit";
  62.       
  63.       public static const UPDATE_COMPLETE:String = "updateComplete";
  64.       
  65.       public static const INIT_PROGRESS:String = "initProgress";
  66.       
  67.       public static const SHOW:String = "show";
  68.        
  69.       
  70.       public function FlexEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  71.       {
  72.          super(param1,param2,param3);
  73.       }
  74.       
  75.       override public function clone() : Event
  76.       {
  77.          return new FlexEvent(type,bubbles,cancelable);
  78.       }
  79.    }
  80. }
  81.